github.com/klauspost/compress/zstd.bitReader.cursor (field)

18 uses

	github.com/klauspost/compress/zstd (current package)
		bitreader.go#L22: 	cursor   int    // offset where next read should end
		bitreader.go#L37: 	b.cursor = len(in)
		bitreader.go#L73: 	b.cursor -= 4
		bitreader.go#L74: 	b.value = (b.value << 32) | uint64(le.Load32(b.in, b.cursor))
		bitreader.go#L80: 	b.cursor -= 8
		bitreader.go#L81: 	b.value = le.Load64(b.in, b.cursor)
		bitreader.go#L90: 	if b.cursor >= 4 {
		bitreader.go#L91: 		b.cursor -= 4
		bitreader.go#L92: 		b.value = (b.value << 32) | uint64(le.Load32(b.in, b.cursor))
		bitreader.go#L97: 	b.bitsRead -= uint8(8 * b.cursor)
		bitreader.go#L98: 	for b.cursor > 0 {
		bitreader.go#L99: 		b.cursor -= 1
		bitreader.go#L100: 		b.value = (b.value << 8) | uint64(b.in[b.cursor])
		bitreader.go#L106: 	return b.cursor == 0 && b.bitsRead >= 64
		bitreader.go#L116: 	return 8*uint(b.cursor) + 64 - uint(b.bitsRead)
		bitreader.go#L123: 	b.cursor = 0
		decoder.go#L336: 			frame.history.decoders.br.cursor = 0
		seqdec.go#L245: 		if br.cursor > 4+((maxOffsetBits+16+16)>>3) {